home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 251_01 / advint.h < prev    next >
Text File  |  1987-10-27  |  384b  |  22 lines

  1. /* advint.h - adventure interpreter definitions */
  2. /*
  3.     Copyright (c) 1986, by David Michael Betz
  4.     All rights reserved
  5. */
  6.  
  7. #include <stdio.h>
  8. #include <ctype.h>
  9.  
  10. /* useful definitions */
  11. #define TRUE        1
  12. #define FALSE        0
  13. #define EOS        '\0'
  14.  
  15. /* program limits */
  16. #define STKSIZE        500
  17.  
  18. /* code completion codes */
  19. #define FINISH        1
  20. #define CHAIN        2
  21. #define ABORT        3
  22.